home *** CD-ROM | disk | FTP | other *** search
/ Zoo Guides: Life in the Desert / Zoo Guides - Life in the Desert.iso / pc / lfnthdsr / chapters / shared.dir / 00411_Script_411 < prev    next >
Text File  |  1995-05-08  |  944b  |  42 lines

  1. on quality
  2.   global drive
  3.   
  4.   if drive = 2 then  
  5.     if the frame > 40 then 
  6.       put the castnum of sprite 15 into hh
  7.       set the controller of cast hh to 0
  8.       set the movierate of sprite 15 to 0
  9.       go the frame - 40
  10.       updatestage
  11.       exit
  12.     end if
  13.     
  14.     puppetsprite 18, false
  15.     go the frame + 40
  16.     put the castnum of sprite 15 into hh
  17.     set the controller of cast hh to 1
  18.     updatestage
  19.     -- set the movierate of sprite 15 to 1
  20.   else
  21.     
  22.     if the frame > 20 then 
  23.       put the castnum of sprite 15 into hh
  24.       set the controller of cast hh to 0
  25.       set the movierate of sprite 15 to 0
  26.       go the frame - 22
  27.       updatestage
  28.       exit
  29.     end if
  30.     
  31.     puppetsprite 18, false
  32.     go the frame + 22
  33.     put the castnum of sprite 15 into hh
  34.     set the controller of cast hh to 1
  35.     updatestage
  36.     -- set the movierate of sprite 15 to 1
  37.   end if
  38.   
  39. end
  40.  
  41.  
  42.